home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / VMS-to-Linux-HOWTO < prev    next >
Text File  |  1997-11-17  |  50KB  |  1,328 lines

  1.   From VMS to Linux HOWTO
  2.   By Guido Gonzato, guido@ibogfs.cineca.it
  3.   v1.0.1, 31 October 1997
  4.  
  5.   This HOWTO is aimed at all those who have been using VMS and now need
  6.   or want to switch to Linux, the free UNIX clone. The transition is
  7.   made (hopefully) painless with a step--to--step comparison between
  8.   commands and available tools.
  9.  
  10.   1.  Introduction
  11.  
  12.   1.1.  Why Linux?
  13.  
  14.   You've heard that UNIX is difficult and balk at the prospect of
  15.   leaving VMS, right? Don't worry. Linux, one of the finest UNIX clones,
  16.   is not more difficult to use than VMS (actually, I find it much
  17.   easier), and it's much more powerful and versatile.
  18.  
  19.   Linux and VMS accomplish essentially the same tasks, but Linux' tools
  20.   are superior, its syntax is much more concise, and has some features
  21.   missing in VMS that help save a lot of time. (You'll often hear that
  22.   VMS and UNIX have a different `philosophy'.) Moreover, Linux is
  23.   available for PCs while VMS is not, and a Pentium-based Linux box can
  24.   outperform a VAX. I guess this is the reason why you want to swap VMS
  25.   to Linux.
  26.  
  27.   I imagine you're a university researcher or a student, and that you
  28.   use VMS for the following everyday tasks:
  29.  
  30.   ╖  writing papers with TeX/LaTeX;
  31.  
  32.   ╖  programming in Fortran;
  33.  
  34.   ╖  doing some graphics;
  35.  
  36.   ╖  using Internet services;
  37.  
  38.   ╖  et cetera.
  39.  
  40.   In the following sections I'm going to explain to you how to do these
  41.   tasks under Linux, exploiting your experience with VMS. Prerequisites:
  42.  
  43.   ╖  Linux and X Window System are properly installed;
  44.  
  45.   ╖  there's a system administrator to take care of the technical
  46.      details (please get help from them, not from me ;-) ;
  47.  
  48.   ╖  your shell---the equivalent of DCL---is bash (ask your sysadm).
  49.  
  50.   Please note that this HOWTO is not enough to acquaint you fully with
  51.   Linux: it only contains the bare essential to get you started. You
  52.   should learn more about Linux to make the most of it (advanced bash
  53.   features, programming, regular expressions...). From now on, RMP means
  54.   `please read the man pages for further details'. The man pages are the
  55.   equivalent of the command HELP.
  56.  
  57.   The Linux Documentation Project documents, available on
  58.   sunsite.unc.edu:/pub/Linux/docs/LDP, are an important source of
  59.   information. I suggest that you read Larry Greenfield's ``Linux User
  60.   Guide''---it's invaluable for the novice user.
  61.  
  62.   And now, go ahead.
  63.  
  64.   1.2.  Comparing Commands and Files
  65.  
  66.   This table attempts to compare VMS' and Linux' most used commands.
  67.   Please keep in mind that the syntax is often very different; for more
  68.   details, refer to the following sections.
  69.  
  70.   VMS                             Linux                   Notes
  71.   ------------------------------------------------------------------------------
  72.  
  73.   @COMMAND                        command                 must be executable
  74.   COPY file1 file2                cp file1 file2
  75.   CREATE/DIR [.dirname]           mkdir dirname           only one at a time
  76.   CREATE/DIR [.dir1.dir2]         mkdirhier dir/name
  77.   DELETE filename                 rm filename
  78.   DIFF file1 file2                diff -c file1 file2
  79.   DIRECTORY                       ls
  80.   DIRECTORY [...]file             find . -name file
  81.   DIRECTORY/FULL                  ls -al
  82.   EDIT filename                   vi filename,            you won't like it
  83.                                   emacs filename,         EDT compatible
  84.                                   jed filename            ditto---my favourite
  85.   FORTRAN prog.for                g77 prog.f,             no need to do LINK
  86.                                   f77 prog.f,
  87.                                   fort77 prog.f
  88.   HELP command                    man command             must specify `command'
  89.                                   info command            ditto
  90.   LATEX file.tex                  latex file.tex
  91.   LOGIN.COM                       .bash_profile,          `hidden' file
  92.                                   .bashrc                 ditto
  93.   LOGOUT.COM                      .bash_logout            ditto
  94.   MAIL                            mail,                   crude
  95.                                   elm,                    much better
  96.                                   pine                    better still
  97.   PRINT file.ps                   lpr file.ps
  98.   PRINT/QUEUE=laser file.ps       lpr -Plaser file.ps
  99.   PHONE user                      talk user
  100.   RENAME file1 file2              mv file1 file2          not for multiple files
  101.   RUN progname                    progname
  102.   SEARCH file "pattern"           grep pattern file
  103.   SET DEFAULT [-]                 cd ..
  104.   SET DEFAULT [.dir.name]         cd dir/name
  105.   SET HOST hostname               telnet hostname,        not exactly the same
  106.                                   rlogin hostname
  107.   SET FILE/OWNER_UIC=joe          chown joe file          completely different
  108.   SET NOBROADCAST                 mesg
  109.   SET PASSWORD                    passwd
  110.   SET PROT=(perm) file            chmod perm file         completely different
  111.   SET TERMINAL                    export TERM=            different syntax
  112.   SHOW DEFAULT                    pwd
  113.   SHOW DEVICE                     du, df
  114.   SHOW ENTRY                      lpq
  115.   SHOW PROCESS                    ps -ax
  116.   SHOW QUEUE                      lpq
  117.   SHOW SYSTEM                     top
  118.   SHOW TIME                       date
  119.   SHOW USERS                      w
  120.   STOP                            kill
  121.   STOP/QUEUE                      kill,                   for processes
  122.                                   lprm                    for print queues
  123.   SUBMIT command                  command &
  124.   SUBMIT/AFTER=time command       at time command
  125.   TEX file.tex                    tex file.tex
  126.   TYPE/PAGE file                  more file
  127.                                   less file               much better
  128.  
  129.   But of course it's not only a matter of different command names. Read
  130.   on.
  131.  
  132.   2.  Short Intro
  133.  
  134.   This is what you absolutely need to know before logging in the first
  135.   time. Relax, it's not much.
  136.  
  137.   2.1.  Files
  138.  
  139.   ╖  Under VMS filenames are in the form filename.extension.version;.
  140.      Under Linux, the version number doesn't exist (big limitation, but
  141.      see Section ``RCS in a Nutshell''); the filename has normally a
  142.      limit of 255 characters and can have as many dots as you like.
  143.      Example of filename: This.is_a_FILEname.txt.
  144.  
  145.   ╖  Linux distinguishes between upper case and lower case characters:
  146.      FILENAME.txt and filename.txt are two different files; ls is a
  147.      command, LS is not.
  148.  
  149.   ╖  A filename starting with a dot is a `hidden' file (that is, it
  150.      won't normally show up in dir listings), while filenames ending
  151.      with a tilde '~' represent backup files.
  152.  
  153.   Now, a table to sum up how to translate commands from VMS to Linux:
  154.  
  155.        VMS                                     Linux
  156.        ---------------------------------------------------------------------
  157.  
  158.        $ COPY file1.txt; file2.txt;            $ cp file1.txt file2.txt
  159.        $ COPY [.dir]file.txt;1 []              $ cp dir/file.txt .
  160.        $ COPY [.dir]file.txt;1 [-]             $ cp dir/file.txt ..
  161.        $ DELETE *.dat.*                        $ rm *dat
  162.        $ DIFF file1 file2                      $ diff -c file1 file2
  163.        $ PRINT file                            $ lpr file
  164.        $ PRINT/queue=queuename file            $ lpr -Pprintername file
  165.        $ SEARCH *.tex.* "geology"              $ grep geology *tex
  166.  
  167.   For other examples involving directories, see below; for details about
  168.   protections, ownership, and advanced topics, see Section ``Advanced
  169.   Topics''.
  170.  
  171.   2.2.  Directories
  172.  
  173.   ╖  Within the same node and device, directories names under VMS are in
  174.      the form [top.dir.subdir]; under Linux, /top/dir/subdir/. On the
  175.      top of the directory tree lies the so--called `root directory'
  176.      called /; underneath there are other directories like /bin, /usr,
  177.      /tmp, /etc, and others.
  178.  
  179.   ╖  The directory /home contains the so--called users' `home
  180.      directories': e.g. /home/guido, /home/warner, and so on.  When a
  181.      user logs in, they start working in their home dir; it's the
  182.      equivalent of SYS$LOGIN. There's a shortcut for the home directory:
  183.      the tilde '~'. So, cd ~/tmp is the same as, say, cd
  184.      /home/guido/tmp.
  185.  
  186.   ╖  Directory names follow the same rules as file names. Furthermore,
  187.      each directory has two special entries: one is . and refers to the
  188.      directory itself (like []), and .. that refers to the parent
  189.      directory (like [-]).
  190.  
  191.   And now for some other examples:
  192.  
  193.        DOS                                     Linux
  194.        ---------------------------------------------------------------------
  195.  
  196.        $ CREATE/DIR [.dirname]                 $ mkdir dirname
  197.        $ CREATE/DIR [.dir1.dir2.dir3]          $ mkdirhier dir1/dir2/dir3
  198.           n/a                                  $ rmdir dirname
  199.                                                (if dirname is empty)
  200.                                                $ rm -R dirname
  201.        $ DIRECTORY                             $ ls
  202.        $ DIRECTORY [...]file.*.*               $ find . -name "file*"
  203.        $ SET DEF SYS$LOGIN                     $ cd
  204.        $ SET DEF [-]                           $ cd ..
  205.        $ SET DEF [top.dir.subdir]              $ cd /top/dir/subdir
  206.        $ SET DEF [.dir.subdir]                 $ cd dir/subdir
  207.        $ SHOW DEF                              $ pwd
  208.  
  209.   For protections, ownership, and advanced topics, see Section
  210.   ``Advanced Topics''.
  211.  
  212.   2.3.  Programs
  213.  
  214.   ╖  Commands, compiled programs, and shell scripts (VMS' `command
  215.      files') don't have compulsory extensions like .EXE or .COM and can
  216.      be called whatever you like. Executable files are marked by an
  217.      asterisk '*' when you issue ls -F.
  218.  
  219.   ╖  To run an executable file, just type its name (no RUN PROGRAM.EXE
  220.      or @COMMAND). Caveat: it's essential that the file be located in a
  221.      directory included in the path of executables, which is a list of
  222.      directories. Typically, the path includes dirs like /bin, /usr/bin,
  223.      /usr/X11R6/bin, and others. If you write your own programs, put
  224.      them in a directory you have included in the path (see how in
  225.      Section ``Configuring''). As an alternative, you may run a program
  226.      specifying its complete path: e.g., /home/guido/data/myprog; or
  227.      ./myprog, if the current directory isn't in the path.
  228.  
  229.   ╖  Command switches are obtained with /OPTION= under VMS, and with
  230.      -switch or --switch under Linux, where switch is a letter, more
  231.      letters combined, or a word. In particular, the switch -R
  232.      (recursive) of many Linux commands performs the same action as
  233.      [...]  under VMS;
  234.  
  235.   ╖  You can issue several commands on the command line:
  236.  
  237.   $ command1 ; command2 ; ... ; commandn
  238.  
  239.   ╖  Most of the flexibility of Linux comes from two features awkwardly
  240.      implemented or missing in VMS: I/O redirection and piping.
  241.      Redirection is a side feature under VMS (remember the switch
  242.      /OUTPUT= of many commands), or a fastidious process, like:
  243.  
  244.        $ DEFINE /USER SYS$OUTPUT OUT
  245.        $ DEFINE /USER SYS$INPUT IN
  246.        $ RUN PROG
  247.  
  248.   which has the simple Linux (UNIX) equivalent:
  249.  
  250.        $ prog < in > out
  251.  
  252.   Piping is simply impossible under VMS (?), but has a key role under
  253.   UNIX. A typical example:
  254.  
  255.        $ myprog < datafile | filter_1 | filter_2 >> result.dat 2> errors.log &
  256.  
  257.   which means: the program myprog gets its input from the file datafile
  258.   (via <), its output is piped (via |) to the program filter_1 that
  259.   takes it as input and processes it, the resulting output is piped
  260.   again to filter_2 for further processing, the final output is appended
  261.   (via >>) to the file result.dat, and error messages are redirected
  262.   (via 2>) onto the file errors.log. All this in background (& at the
  263.   end of the command line). More about this in Section ``Examples''.
  264.  
  265.   For multitasking, `queues', and the like, see Section ``Advanced
  266.   Topics''.
  267.  
  268.   2.4.  Quick Tour
  269.  
  270.   Now you are ready to try Linux out. Enter your login name and password
  271.   exactly as they are. For example, if your login name and password are
  272.   john and My_PassWd, don't type John or my_passwd.  Remember, UNIX
  273.   distinguishes between capital and small letters.
  274.  
  275.   Once you've logged in, you'll see a prompt; chances are it'll be
  276.   something like machinename:$. If you want to change the prompt or make
  277.   some programs start automatically, you'll have to edit a `hidden' file
  278.   called .profile or .bash_profile (see example in Section
  279.   ``Configuring''). This is the equivalent of LOGIN.COM.
  280.  
  281.   Pressing ALT--F1, ALT--F2, ... ALT--F6 switches between `virtual
  282.   consoles'.  When one VC is busy with a full--screen application, you
  283.   can flip over to another and continue to work. Try and log in to
  284.   another VC.
  285.  
  286.   Now you may want to start X Window System (from now on, X). X is a
  287.   graphic environment very similar to DECWindows---actually, the latter
  288.   derives from the former. Type the command startx and wait a few
  289.   seconds; most likely you'll see an open xterm or equivalent terminal
  290.   emulator, and possibly a button bar. (It depends on how your sysadm
  291.   configured your Linux box.)  Click on the desktop (try both mouse
  292.   buttons) to see a menu.
  293.  
  294.   While in X, to access the text mode (`console') sessions press
  295.   CTRL--ALT--F1 ... CTRL--ALT--F6. Try it. When in console, go back to X
  296.   pressing ALT--F7. To quit X, follow the menu instructions or press
  297.   CTRL--ALT--BS.
  298.  
  299.   Type the following command to list your home dir contents, including
  300.   the hidden files:
  301.  
  302.        $ ls -al
  303.  
  304.   Press SHIFT--PAG UP to back-scroll. Now get help about the ls command
  305.   typing:
  306.  
  307.        $ man ls
  308.  
  309.   pressing 'q' to exit. To end the tour, type exit to quit your session.
  310.   If now you want to turn off your PC, press CTRL--ALT--DEL and wait a
  311.   few seconds (never switch off the PC while in Linux! You could damage
  312.   the filesystem.)
  313.  
  314.   If you think you're ready to work, go ahead, but if I were you I'd
  315.   jump to Section ``Advanced Topics''.
  316.  
  317.   3.  Editing Files
  318.  
  319.   Linux doesn't have EDT, but there are scores of editors available. The
  320.   only one that's guaranteed to be included in every UNIX version is
  321.   vi---forget it, your sysadm must have installed something better.
  322.   Probably the most popular editor is emacs, which can emulate EDT to a
  323.   certain degree; jed is another editor that provides EDT emulation.
  324.  
  325.   These two editors are particularly useful for editing program sources,
  326.   since they have two features unknown to EDT: syntax hilighting and
  327.   automatic indentation. Moreover, you can compile your programs from
  328.   within the editor (command ESC-X compile); in case of a syntax error,
  329.   the cursor will be positioned on the offending line. I bet that you'll
  330.   never want to use the true blue EDT again.
  331.   If you have emacs: start it, then type ESC-X edt-emulation-on.
  332.   Pressing ALT--X or ESC-X is emacs' way of issuing commands, like EDT's
  333.   CTRL--Z. From now on, emacs acts like EDT apart from a few commands.
  334.   Differences:
  335.  
  336.   ╖  don't press CTRL--Z to issue commands (if you did, you stopped
  337.      emacs. Type fg to resume it);
  338.  
  339.   ╖  there's an extensive on-line help. Press CTRL-H ?, or CTRL-H T to
  340.      start a tutorial;
  341.  
  342.   ╖  to save a file, press CTRL-X CTRL-S;
  343.  
  344.   ╖  to exit, press CTRL-X CTRL-C;
  345.  
  346.   ╖  to insert a new file in a buffer, press CTRL-X CTRL-F, then CTRL-X
  347.      B to switch among buffers.
  348.  
  349.   If you have jed: ask your sysadm to configure jed properly.  Emulation
  350.   is already on when you start it; use the normal keypad keys, and press
  351.   CTRL--H CTRL--H or CTRL-? to get help. Commands are issued in the same
  352.   way as emacs'. In addition, there are some handy key bindings missing
  353.   in the original EDT; key bindings can also be tailored to your own
  354.   taste. Ask your sysadm.
  355.  
  356.   In alternative, you may use another editor with a completely different
  357.   interface. emacs in native mode is an obvious choice; another popular
  358.   editor is joe, which can emulate other editors like emacs itself
  359.   (being even easier to use) or the DOS editor. Invoke the editor as
  360.   jmacs or jstar and press, respectively, CTRL-X H or CTRL-J to get
  361.   online help. emacs and jed are much more powerful than good ol' EDT.
  362.  
  363.   4.  TeXing
  364.  
  365.   TeX and LaTeX are identical to their VMS counterparts---only quicker
  366.   :-), but the tools to handle the .dvi and .ps files are superior:
  367.  
  368.   ╖  to run a TeX file through TeX, do as usual: tex file.tex;
  369.  
  370.   ╖  to turn a .dvi file into a .ps file, type dvips -o filename.ps
  371.      filename.dvi;
  372.  
  373.   ╖  to visualize a .dvi file, type within an X session: xdvi
  374.      filename.dvi &. Click on the page to magnify. This program is
  375.      smart: if you edit and run TeX producing newer versions of the .dvi
  376.      file, xdvi will update it automatically;
  377.  
  378.   ╖  to visualize a .ps file, type within an X session: ghostview
  379.      filename.ps &. Click on the page to magnify. The whole document or
  380.      selected pages can be printed. A newer and better program is gv.
  381.  
  382.   ╖  to print the .ps: usually the command lpr mypaper.ps will do, but
  383.      if the PostScript printer is called, say, `ps' (ask your sysadm)
  384.      you'll do: lpr -Pps mypaper.ps. For more information about print
  385.      queues, go to Section ``Print Queues''.
  386.  
  387.   5.  Programming
  388.  
  389.   Programming under Linux is much better: there are lots of tools that
  390.   make programming easier and quicker. For instance, the drudgery of
  391.   editing--saving--exiting--compiling--re-editing can be cut short by
  392.   using editors like emacs or jed, as seen above.
  393.  
  394.   5.1.  Fortran
  395.  
  396.   Not substantial differences here, but note that at the time of writing
  397.   the available (free) compilers are not 100% compatible with VMS';
  398.   expect some minor quirks. (It's actually the VMS compiler which has
  399.   non-standard extensions.) See /usr/doc/g77/DOC or /usr/doc/f2c/f2c.ps
  400.   for details.
  401.  
  402.   Your sysadm has installed a native compiler called g77 (good but, as
  403.   of version 0.5.21, still not perfectly compatible with DEC Fortran) or
  404.   possibly the Fortran to C translator, f2c, and one of the front-ends
  405.   that make it mimic a native compiler. In my experience, the package
  406.   yaf77 is the one that provides best results.
  407.  
  408.   To compile a Fortran program with g77, edit the source, save it with
  409.   extension .f, then do:
  410.  
  411.        $ g77 myprog.f
  412.  
  413.   which creates by default an executable called a.out (you don't have to
  414.   link anything). To give the executable a different name and do some
  415.   optimisation:
  416.  
  417.        $ g77 -O2 -o myprog myprog.f
  418.  
  419.   Beware of optimisations! Ask your sysadm to read the documentation
  420.   that comes with the compiler and tell you if there are any problems.
  421.  
  422.   To compile a subroutine:
  423.  
  424.        $ g77 -c mysub.f
  425.  
  426.   This creates a file mysub.o. To link this subroutine to a program,
  427.   you'll do
  428.  
  429.        $ g77 -o myprog myprog.f mysub.o
  430.  
  431.   If you have many external subroutines and you want to make a library,
  432.   do the following:
  433.  
  434.        $ cd subroutines/
  435.        $ cat *f >mylib.f ; g77 -c mylib.f
  436.  
  437.   This will create mylib.o that you can link to your programs.
  438.  
  439.   Finally, to link an external library called, say, libdummy.so:
  440.  
  441.        $ g77 -o myprog myprog.f -ldummy
  442.  
  443.   If you have f2c, you only have to use f77 or fort77 instead of g77.
  444.  
  445.   Another useful programming tool is make, described below.
  446.  
  447.   5.2.  Using make
  448.  
  449.   The utility make is a tool to handle the compilation of programs that
  450.   are split into several source files.
  451.  
  452.   Let's suppose you have source files containing your routines,
  453.   file_1.f, file_2.f, file_3.f, and a source file of the main program
  454.   that uses the routines, myprog.f. If you compile your program
  455.   manually, whenever you modify one of the source files you have to
  456.   figure out which file depends on which, which file to recompile first,
  457.   and so on.
  458.  
  459.   Instead of getting mad, you can write a `makefile'. This is a text
  460.   file containing the dependencies between your sources: when one is
  461.   modified, only the ones that depend on the modified file will be
  462.   recompiled.
  463.  
  464.   In our example, you'd write a makefile like this:
  465.  
  466.   ______________________________________________________________________
  467.  
  468.   # This is makefile
  469.   # Press the <TAB> key where you see <TAB>!
  470.   # It's important: don't use spaces instead.
  471.  
  472.   myprog: myprog.o file_1.o file_2.o file_3.o
  473.   <TAB>g77 -o myprog myprog.o file_1.o file_2.o file_3.o
  474.   # myprog depends on four object files
  475.  
  476.   myprog.o: myprog.f
  477.   <TAB>g77 -c myprog.f
  478.   # myprog.o depends on its source file
  479.  
  480.   file_1.o: file_1.f
  481.   <TAB>g77 -c file_1.f
  482.   # file_1.o depends on its source file
  483.  
  484.   file_2.o: file_2.f file_1.o
  485.   <TAB>g77 -c file_2.f file_1.o
  486.   # file_2.o depends on its source file and an object file
  487.  
  488.   file_3.o: file_3.f file_2.o
  489.   <TAB>g77 -c file_3.f file_2.o
  490.   # file_3.o depends on its source file and an object file
  491.  
  492.   # end of makefile.
  493.   ______________________________________________________________________
  494.  
  495.   Save this file as Makefile and type make to compile your program;
  496.   alternatively, save it as myprog.mak and type make -f myprog.mak.  And
  497.   of course, RMP.
  498.  
  499.   5.3.  Shell Scripts
  500.  
  501.   Shell scripts are the equivalent of VMS' command files and, for a
  502.   change, are much more powerful.
  503.  
  504.   To write a script, all you have to do is write a standard ASCII file
  505.   containing the commands, save it, then make it executable with the
  506.   command chmod +x <scriptfile>. To execute it, type its name.
  507.  
  508.   Writing scripts under bash is such a vast subject it would require a
  509.   book by itself, and I will not delve into the topic any further. I'll
  510.   just give you a more-or-less comprehensive and (hopefully) useful
  511.   example you can extract some basic rules from.
  512.  
  513.   EXAMPLE: sample.sh
  514.  
  515.   ______________________________________________________________________
  516.   #!/bin/sh
  517.   # sample.sh
  518.   # I am a comment
  519.   # don't change the first line, it must be there
  520.   echo "This system is: `uname -a`" # use the output of the command
  521.   echo "My name is $0" # built-in variables
  522.   echo "You gave me the following $# parameters: "$*
  523.   echo "First parameter is: "$1
  524.   echo -n "What's your name? " ; read your_name
  525.   echo notice the difference: "hi $your_name" # quoting with "
  526.   echo notice the difference: 'hi $your_name' # quoting with '
  527.   DIRS=0 ; FILES=0
  528.   for file in `ls .` ; do
  529.     if [ -d ${file} ] ; then # if file is a directory
  530.       DIRS=`expr $DIRS + 1`  # this means DIRS = DIRS + 1
  531.     elif [ -f ${file} ] ; then
  532.       FILES=`expr $FILES + 1`
  533.     fi
  534.     case ${file} in
  535.       *.gif|*jpg) echo "${file}: graphic file" ;;
  536.       *.txt|*.tex) echo "${file}: text file" ;;
  537.       *.c|*.f|*.for) echo "${file}: source file" ;;
  538.       *) echo "${file}: generic file" ;;
  539.     esac
  540.   done
  541.   echo "there are ${DIRS} directories and ${FILES} files"
  542.   ls | grep "ZxY--!!!WKW"
  543.   if [ $? != 0 ] ; then # exit code of last command
  544.     echo "ZxY--!!!WKW not found"
  545.   fi
  546.   echo "enough... type 'man bash' if you want more info."
  547.   ______________________________________________________________________
  548.  
  549.   5.4.  C
  550.  
  551.   Linux is an excellent environment to program in C. Taken for granted
  552.   that you know C, here are a couple of guidelines. To compile your
  553.   standard hello.c you'll use the gcc compiler, which comes as part of
  554.   Linux and has the same syntax as g77:
  555.  
  556.        $ gcc -O2 -o hello hello.c
  557.  
  558.   To link a library to a program, add the switch -l<libname>.  For
  559.   example, to link the math library and optimize do
  560.  
  561.        $ gcc -O2 -o mathprog mathprog.c -lm
  562.  
  563.   (The -l<libname> switch forces gcc to link the library
  564.   /usr/lib/lib<libname>.a; so -lm links /usr/lib/libm.a).
  565.  
  566.   When your program is made of several source files, you'll need to use
  567.   the utility make described above. Just use gcc and C source files in
  568.   the makefile.
  569.  
  570.   You can invoke some help about the C functions, that are covered by
  571.   man pages, section 3; for example,
  572.  
  573.        $ man 3 printf
  574.  
  575.   There are lots of libraries available out there; among the first
  576.   you'll want to use are ncurses, to handle text mode effects, and
  577.   svgalib, to do graphics.
  578.  
  579.   6.  Graphics
  580.  
  581.   Among the scores of graphic packages available, gnuplot stands out for
  582.   its power and ease of use. Go to X and type gnuplot, and have two
  583.   sample data files ready: 2D-data.dat (two data per line), and 3D-
  584.   data.dat (three data per line).
  585.  
  586.   Examples of 2-D graphs:
  587.  
  588.        gnuplot> set title "my first graph"
  589.        gnuplot> plot '2D-data.dat'
  590.        gnuplot> plot '2D-data.dat' with linespoints
  591.        gnuplot> plot '2D-data.dat', sin(x)
  592.        gnuplot> plot [-5:10] '2D-data.dat'
  593.  
  594.   Example of 3-D graphs (each `row' of X values is followed by a blank
  595.   line):
  596.  
  597.        gnuplot> set parametric ; set hidden3d ; set contour
  598.        gnuplot> splot '3D-data.dat' using 1:2:3 with linespoints
  599.  
  600.   A single-column datafile (e.g., a time series) can also be plotted as
  601.   a 2-D graph:
  602.  
  603.        gnuplot> plot [-5:15] '2D-data-1col.dat' with linespoints
  604.  
  605.   or as a 3-D graph (blank lines in the datafile, as above):
  606.  
  607.   gnuplot> set noparametric ; set hidden3d
  608.   gnuplot> splot '3D-data-1col.dat' using 1 with linespoints
  609.  
  610.   To print a graph: if the command to print on your Postscript printer
  611.   is lpr -Pps file.ps, issue:
  612.  
  613.        gnuplot> set term post
  614.        gnuplot> set out '| lpr -Pps'
  615.        gnuplot> replot
  616.  
  617.   then type set term x11 to restore. Don't get confused---the last print
  618.   will come out only when you quit gnuplot.
  619.  
  620.   For more info, type help or see the examples in directory
  621.   /usr/lib/gnuplot/demos/, if you have it.
  622.  
  623.   7.  Mail and Internet Tools
  624.  
  625.   Since Internet was born on UNIX machines, you find plenty of nice and
  626.   easy-to-use applications under Linux. Here are just some:
  627.  
  628.   ╖  Mail: use elm or pine to handle your email; both programs have on-
  629.      line help. For short messages, you could use mail, as in mail -s
  630.      "hello mate" user@somewhere < msg.txt. You may like programs like
  631.      xmail or some such.
  632.  
  633.   ╖  Newsgroups: use tin or slrn, both very intuitive and self-
  634.      explanatory.
  635.  
  636.   ╖  ftp: apart from the usual character-based ftp, ask your sysadm to
  637.      install the full-screen ncftp or a graphical ftp client like xftp.
  638.  
  639.   ╖  WWW: the ubiquitous netscape, or xmosaic, chimera, and arena are
  640.      graphical web browsers; a character-based one is lynx, quick and
  641.      effective.
  642.  
  643.   8.  Advanced Topics
  644.  
  645.   Here the game gets tough. Learn these features, then you'll be ready
  646.   to say that you `know something about Linux' ;-)
  647.  
  648.   8.1.  Permissions and Ownership
  649.  
  650.   Files and directories have permissions (`protections') and ownership,
  651.   just like under VMS. If you can't run a program, or can't modify a
  652.   file, or can't access a directory, it's because you don't have the
  653.   permission to do so, and/or because the file doesn't belong to you.
  654.   Let's have a look at the following example:
  655.  
  656.        $ ls -l /bin/ls
  657.        -rwxr-xr-x   1 root     bin         27281 Aug 15  1995 /bin/ls*
  658.  
  659.   The first field shows the permissions of the file ls (owner root,
  660.   group bin). There are three types of ownership: owner, group, and
  661.   others (similar to VMS owner, group, world), and three types of
  662.   permissions: read, write (and delete), and execute.
  663.  
  664.   >From left to right, - is the file type (- = ordinary file, d =
  665.   directory, l = link, etc); rwx are the permissions for the file owner
  666.   (read, write, execute); r-x are the permissions for the group of the
  667.   file owner (read, execute); r-x are the permissions for all other
  668.   users (read, execute).
  669.  
  670.   To change a file's permissions:
  671.  
  672.        $ chmod <whoXperm> <file>
  673.  
  674.   where who is u (user, that is owner), g (group), o (other), X is
  675.   either + or -, perm is r (read), w (write), or x (execute). Examples:
  676.  
  677.        $ chmod u+x file
  678.  
  679.   this sets the execute permission for the file owner. Shortcut: chmod
  680.   +x file.
  681.  
  682.        $ chmod go-wx file
  683.  
  684.   this removes write and execute permission for everyone except the
  685.   owner.
  686.  
  687.        $ chmod ugo+rwx file
  688.  
  689.   this gives everyone read, write, and execute permission.
  690.  
  691.   A shorter way to refer to permissions is with numbers: rwxr-xr-x can
  692.   be expressed as 755 (every letter corresponds to a bit: --- is 0, --x
  693.   is 1, -w- is 2...).
  694.  
  695.   For a directory, rx means that you can cd to that directory, and w
  696.   means that you can delete a file in the directory (according to the
  697.   file's permissions, of course), or the directory itself. All this is
  698.   only part of the matter---RMP.
  699.   To change a file's owner:
  700.  
  701.        $ chown username file
  702.  
  703.   To sum up, a table:
  704.  
  705.        VMS                             Linux                   Notes
  706.        ------------------------------------------------------------------------------
  707.  
  708.        SET PROT=(O:RW) file.txt        $ chmod u+rw file.txt
  709.                                        $ chmod 600 file.txt
  710.        SET PROT=(O:RWED,W) file        $ chmod u+rwx file
  711.                                        $ chmod 700 file
  712.        SET PROT=(O:RWED,W:RE) file     $ chmod 755 file
  713.        SET PROT=(O:RW,G:RW,W) file     $ chmod 660 file
  714.        SET FILE/OWNER_UIC=JOE file     $ chown joe file
  715.        SET DIR/OWNER_UIC=JOE [.dir]    $ chown joe dir/
  716.  
  717.   8.2.  Multitasking: Processes and Jobs
  718.  
  719.   More about running programs. There are no `batch queues' under Linux
  720.   as you're used to; multitasking is handled very differently. Again,
  721.   this is what the typical command line looks like:
  722.  
  723.        $ command -s1 -s2 ... -sn par1 par2 ... parn < input > output &
  724.  
  725.   where -s1, ..., -sn are the program switches, par1, ..., parn are the
  726.   program parameters.
  727.  
  728.   Now let's see how multitasking works. Programs, running in foreground
  729.   or background, are called `processes'.
  730.  
  731.   ╖  To launch a process in background:
  732.  
  733.        $ progname [-switches] [parameters] [< input] [> output] &
  734.        [1] 234
  735.  
  736.   the shell tells you what the `job number' (the first digit; see below)
  737.   and PID (Process IDentifier) of the process are. Each process is iden¡
  738.   tified by its PID.
  739.  
  740.   ╖  To see how many processes there are:
  741.  
  742.   $ ps -ax
  743.  
  744.   This will output a list of currently running processes.
  745.  
  746.   ╖  To kill a process:
  747.  
  748.        $ kill <PID>
  749.  
  750.   You may need to kill a process when you don't know how to quit it the
  751.   right way... ;-). Sometimes, a process will only be killed by one of
  752.   the following:
  753.  
  754.        $ kill -15 <PID>
  755.        $ kill -9 <PID>
  756.  
  757.   In addition to this, the shell allows you to stop or temporarily
  758.   suspend a process, send a process to background, and bring a process
  759.   from background to foreground. In this context, processes are called
  760.   `jobs'.
  761.  
  762.   ╖  To see how many jobs there are:
  763.  
  764.        $ jobs
  765.  
  766.   jobs are identified by the numbers the shell gives them, not by their
  767.   PID.
  768.  
  769.   ╖  To stop a process running in foreground:
  770.  
  771.        $ CTRL-C
  772.  
  773.   (it doesn't always work)
  774.  
  775.   ╖  To suspend a process running in foreground:
  776.  
  777.        $ CTRL-Z
  778.  
  779.   (ditto)
  780.  
  781.   ╖  To send a suspended process into background (it becomes a job):
  782.  
  783.   $ bg <job>
  784.  
  785.   ╖  To bring a job to foreground:
  786.  
  787.        $ fg <job>
  788.  
  789.   ╖  To kill a job:
  790.  
  791.        $ kill <%job>
  792.  
  793.   8.3.  Files, Revisited
  794.  
  795.   More information about files.
  796.  
  797.   ╖  stdin, stdout, stderr: under UNIX, every system component is
  798.      treated as if it were a file. Commands and programs get their input
  799.      from a `file' called stdin (standard input; usually, the keyboard),
  800.      put their output on a `file' called stdout (usually, the screen),
  801.      and error messages go to a `file' called stderr (usually, the
  802.      screen).
  803.  
  804.      Using < and > you redirect input and output to a different file.
  805.      Moreover, >> appends the output to a file instead of overwriting
  806.      it; 2> redirects error messages (stderr); 2>&1 redirects stderr to
  807.      stdout, while 1>&2 redirects stdout to stderr.  There's a `black
  808.      hole' called /dev/null: everything redirected to it disappears;
  809.  
  810.   ╖  wildcards: '*' is almost the same. Usage: * matches all files
  811.      except the hidden ones; .* matches all hidden files; *.* matches
  812.      only those that have a '.' in the middle, followed by other
  813.      characters; p*r matches both `peter' and `piper'; *c* matches both
  814.      `picked' and `peck'.  []. Usage: [abc]* matches files starting with
  815.      a, b, c; *[I-N,1,2,3] matches files ending with I, J, K, L, M, N,
  816.      1, 2, 3;
  817.  
  818.   ╖  mv (RENAME) doesn't work for multiple files; that is, mv *.xxx
  819.      *.yyy won't work;
  820.  
  821.   ╖  use cp -i and mv -i to be warned when a file is going to be
  822.      overwritten.
  823.  
  824.   8.4.  Print Queues
  825.  
  826.   Your prints are queued, like under VMS. When you issue a print
  827.   command, you may specify a printer name. Example:
  828.  
  829.        $ lpr file.txt          # this goes to the standard printer
  830.        $ lpr -Plaser file.ps   # this goes to the printer named 'laser'
  831.  
  832.   To handle the print queues, you use the following commands:
  833.  
  834.        VMS                                     Linux
  835.        ------------------------------------------------------------------------------
  836.  
  837.        $ PRINT file.ps                         $ lpr file.ps
  838.        $ PRINT/QUEUE=laser file.ps             $ lpr -Plaser file.ps
  839.        $ SHOW QUEUE                            $ lpq
  840.        $ SHOW QUEUE/QUEUE=laser                $ lpq -Plaser
  841.        $ STOP/QUEUE                            $ lprm <item>
  842.  
  843.   9.  Configuring
  844.  
  845.   Your sysadm has already provided you with a number of configuration
  846.   files like .xinitrc, .bash_profile, .inputrc, and many others. The
  847.   ones you may want to edit are:
  848.  
  849.   ╖   .bash_profile or .profile: read by the shell at login time. It's
  850.      like LOGIN.COM;
  851.  
  852.   ╖   .bash_logout: read by the shell at logout. It's like LOGOUT.COM;
  853.  
  854.   ╖   .bashrc: read by non--login shells.
  855.  
  856.   ╖   .inputrc: this file customises the key bindings and the behaviour
  857.      of the shell.
  858.  
  859.   To give you an example, I'll include my .bash_profile (abridged):
  860.  
  861.   ______________________________________________________________________
  862.   # $HOME/.bash_profile
  863.  
  864.   # don't redefine the path if not necessary
  865.   echo $PATH | grep $LOGNAME > /dev/null
  866.   if [ $? != 0 ]
  867.   then
  868.     export PATH="$PATH:/home/$LOGNAME/bin"  # add my dir to the PATH
  869.   fi
  870.  
  871.   export PS1='LOGNAME:\w\$ '
  872.   export PS2='Continued...>'
  873.  
  874.   # aliases
  875.  
  876.   alias bin="cd ~/bin" ; alias cp="cp -i" ; alias d="dir"
  877.   alias del="delete" ; alias dir="/bin/ls $LS_OPTIONS --format=vertical"
  878.   alias ed="jed" ; alias mv='mv -i'
  879.   alias u="cd .." ; alias undel="undelete"
  880.  
  881.   # A few useful functions
  882.  
  883.   inst() # Install a .tar.gz archive in current directory.
  884.   {
  885.     gzip -dc $1 | tar xvf -
  886.   }
  887.   cz() # List the contents of a .zip archive.
  888.   {
  889.     unzip -l $*
  890.   }
  891.   ctgz() # List the contents of a .tar.gz archive.
  892.   {
  893.     for file in $* ; do
  894.       gzip -dc ${file} | tar tf -
  895.     done
  896.   }
  897.   tgz() # Create a .tgz archive a la zip.
  898.   {
  899.     name=$1 ; tar -cvf $1 ; shift
  900.     tar -rf ${name} $* ; gzip -S .tgz ${name}
  901.   }
  902.   ______________________________________________________________________
  903.  
  904.   And this is my .inputrc:
  905.  
  906.   ______________________________________________________________________
  907.   # $HOME/.inputrc
  908.   # Last modified: 16 January 1997.
  909.   #
  910.   # This file is read by bash and defines key bindings to be used by the shell;
  911.   # what follows fixes the keys END, HOME, and DELETE, plus accented letters.
  912.   # For more information, man readline.
  913.  
  914.   "\e[1~": beginning-of-line
  915.   "\e[3~": delete-char
  916.   "\e[4~": end-of-line
  917.  
  918.   set bell-style visible
  919.   set meta-flag On
  920.   set convert-meta Off
  921.   set output-meta On
  922.   set horizontal-scroll-mode On
  923.   set show-all-if-ambiguous On
  924.  
  925.   # (F1 .. F5) are "\e[[A" ... "\e[[E"
  926.  
  927.   "\e[[A": "info "
  928.   ______________________________________________________________________
  929.  
  930.   10.  Useful Programs
  931.  
  932.   10.1.  Browsing Files: less
  933.  
  934.   You'll use this file browser every day, so I'll give you a couple of
  935.   tips to use it at best. First of all, ask your sysadm to configure
  936.   less so as it can display not only plain text files, but also
  937.   compressed files, archives, and so on.
  938.  
  939.   The main advantage of less over TYPE is that you can browse files in
  940.   both directions. It also accepts several commands that are issued
  941.   pressing a key. The most useful are:
  942.  
  943.   ╖  first of all, press q to leave the browser;
  944.  
  945.   ╖  h gives you extensive help;
  946.  
  947.   ╖  g to go to beginning of file, G to the end, number+g to go to line
  948.      `number' (e.g. 125g), number+% to move to that percentage of the
  949.      file;
  950.  
  951.   ╖  /pattern searches forwards for `pattern'; n searches forwards for
  952.      the next match; ?pattern and N search backwards;
  953.  
  954.   ╖  m+letter marks current position (e.g. ma); '+letter go to the
  955.      marked position.
  956.  
  957.   ╖  :e examines a new file;
  958.  
  959.   ╖  !command executes the shell command.
  960.  
  961.   10.2.  RCS in a Nutshell
  962.  
  963.   The lack of version numbers in files can be easily overcome by using
  964.   RCS (Revision Control System). This allows you to maintain several
  965.   versions of the same file, and offers many more advantages. I'll only
  966.   explain the very basics of this powerful version control system.
  967.  
  968.   The most important commands are ci and co. The first (``check in'') is
  969.   used to commit the changes you have done to your file, and create a
  970.   new version. The second (``check out'') is used to obtain a working
  971.   copy of your file from the RCS system, either to modify it or simply
  972.   use it for browsing, printing, or whatever.
  973.  
  974.   Let's see an example. First of all you create an initial revision of
  975.   your file, using your favourite editor. Let's suppose that the file
  976.   you'll have under RCS control is called project.tex. Follow these
  977.   steps:
  978.  
  979.   ╖  make a subdirectory called RCS/ in the directory containing
  980.      project.tex. RCS/ will contain the revision control file;
  981.  
  982.   ╖  to put project.tex under RCS control, issue the command
  983.  
  984.        $ ci project.tex
  985.        RCS/project.tex,v  <-- project.tex
  986.        enter description, terminated with a single '.' or end of file:
  987.        NOTE: This is NOT the log message!
  988.        >>
  989.  
  990.   ╖  you will write a line or more containing a description of the
  991.      contents of your file. End it with a line containing a '.' by
  992.      itself, and you'll see
  993.  
  994.        initial revision: 1.1
  995.        done
  996.  
  997.   Now the file project.tex has been taken over by RCS.
  998.  
  999.   10.2.1.  Using the latest version
  1000.  
  1001.   Whenever you want to use, but not modify, the latest version of
  1002.   project.tex, you issue the command
  1003.  
  1004.        $ co project.tex
  1005.        RCS/project.tex,v  --> project.tex
  1006.        revision 1.1
  1007.        done
  1008.  
  1009.   This extracts the latest version (read only) of your file. Now you can
  1010.   browse it, or compile it with tex, but you can't modify it.
  1011.  
  1012.   10.2.2.  Creating a new version
  1013.  
  1014.   When you want to modify your file, you must obtain a ``lock'' on it.
  1015.   This means that RCS knows that you're about to make a newer version.
  1016.   In this case, you use the command
  1017.  
  1018.        $ co project.tex
  1019.        RCS/project.tex,v  --> project.tex
  1020.        revision 1.1 (locked)
  1021.        done
  1022.  
  1023.   You now have a working copy you can modify with your editor. When
  1024.   you're done editing it, you check it in again to commit the changes:
  1025.  
  1026.        $ ci project.tex
  1027.        RCS/project.tex,v  <-- project.tex
  1028.        new revision 1.2; previous revision: 1.1
  1029.        enter log message, terminated with a single '.' or end of file:
  1030.        >> (enter your description here)
  1031.        >> .
  1032.        done
  1033.  
  1034.   If you want to change the version number, type ci -f2.0 project.tex.
  1035.  
  1036.   10.2.3.  Comparing versions
  1037.  
  1038.   If you want to see the history of the changes in project.tex, issue
  1039.  
  1040.        $ rlog project.tex
  1041.  
  1042.   10.2.4.  Using an old version
  1043.  
  1044.   To extract an older version of your file (say, version 1.2 when you're
  1045.   working on 1.6), issue
  1046.  
  1047.        $ co -r1.2 project.tex
  1048.  
  1049.   Be aware that this overwrites your existing working file, if you have
  1050.   one.  You may do:
  1051.  
  1052.        $ co -r1.2 -p project.tex > project.tex.1.2
  1053.  
  1054.   10.3.  Archiving: tar & gzip
  1055.  
  1056.   Under UNIX there are some widely used applications to archive and
  1057.   compress files. tar is used to make archives, that is collections of
  1058.   files. To make a new archive:
  1059.  
  1060.        $ tar -cvf <archive_name.tar> <file> [file...]
  1061.  
  1062.   To extract files from an archive:
  1063.  
  1064.        $ tar -xpvf <archive_name.tar> [file...]
  1065.  
  1066.   To list the contents of an archive:
  1067.  
  1068.        $ tar -tf <archive_name.tar> | less
  1069.  
  1070.   Files can be compressed to save disk space using compress, which is
  1071.   obsolete and shouldn't be used any more, or gzip:
  1072.  
  1073.        $ compress <file>
  1074.        $ gzip <file>
  1075.  
  1076.   that creates a compressed file with extension .Z (compress) or .gz
  1077.   (gzip). These programs don't make archives, but compress files
  1078.   individually. To decompress, use:
  1079.  
  1080.        $ compress -d <file.Z>
  1081.        $ gzip -d <file.gz>
  1082.  
  1083.   RMP.
  1084.  
  1085.   The unarj, zip and unzip utilities are also available. Files with
  1086.   extension .tar.gz or .tgz (archived with tar, then compressed with
  1087.   gzip) are very common in the UNIX world. Here's how to list the
  1088.   contents of a .tar.gz archive:
  1089.  
  1090.        $ gzip -dc <file.tar.gz> | tar tf - | less
  1091.  
  1092.   To extract the files from a .tar.gz archive:
  1093.  
  1094.        $ gzip -dc <file.tar.gz> | tar xvf -
  1095.  
  1096.   11.  Real Life Examples
  1097.  
  1098.   UNIX' core idea is that there are many simple commands that can linked
  1099.   together via piping and redirection to accomplish even really complex
  1100.   tasks.  Look at the following examples; I'll only explain the most
  1101.   complex ones, for the others, please study the above sections and the
  1102.   man pages.
  1103.  
  1104.   Problem: ls is too quick and the file names fly away.
  1105.  
  1106.   Solution:
  1107.  
  1108.        $ ls | less
  1109.  
  1110.   Problem: I have a file containing a list of words. I want to sort it
  1111.   in reverse order and print it.
  1112.  
  1113.   Solution:
  1114.  
  1115.        $ cat myfile.txt | sort -r | lpr
  1116.  
  1117.   Problem: my datafile has some repeated lines! How do I get rid of
  1118.   them?
  1119.  
  1120.   Solution:
  1121.  
  1122.        $ sort datafile.dat | uniq > newfile.dat
  1123.  
  1124.   Problem: I have a file called 'mypaper.txt' or 'mypaper.tex' or some
  1125.   such somewhere, but I don't remember where I put it. How do I find it?
  1126.  
  1127.   Solution:
  1128.  
  1129.        $ find ~ -name "mypaper*"
  1130.  
  1131.   Explanation: find is a very useful command that lists all the files in
  1132.   a directory tree (starting from ~ in this case). Its output can be
  1133.   filtered to meet several criteria, such as -name.
  1134.  
  1135.   Problem: I have a text file containing the word 'entropy' in this
  1136.   directory, is there anything like SEARCH?
  1137.  
  1138.   Solution: yes, try
  1139.  
  1140.        $ grep -l 'entropy' *
  1141.  
  1142.   Problem: somewhere I have text files containing the word 'entropy',
  1143.   I'd like to know which and where they are. Under VMS I'd use search
  1144.   entropy [...]*.*.*, but grep can't recurse subdirectories. Now what?
  1145.  
  1146.   Solution:
  1147.  
  1148.        $ find . -exec grep -l "entropy" {} \; 2> /dev/null
  1149.  
  1150.   Explanation: find . outputs all the file names starting from the
  1151.   current directory, -exec grep -l "entropy" is an action to be
  1152.   performed on each file (represented by {}), \ terminates the command.
  1153.   If you think this syntax is awful, you're right.
  1154.  
  1155.   In alternative, write the following script:
  1156.  
  1157.   ______________________________________________________________________
  1158.   #!/bin/sh
  1159.   # rgrep: recursive grep
  1160.   if [ $# != 3 ]
  1161.   then
  1162.     echo "Usage: rgrep --switches 'pattern' 'directory'"
  1163.     exit 1
  1164.   fi
  1165.   find $3 -name "*" -exec grep $1 $2 {} \; 2> /dev/null
  1166.   ______________________________________________________________________
  1167.  
  1168.   Explanation: grep works like search, and combining it with find we get
  1169.   the best of both worlds.
  1170.  
  1171.   Problem: I have a data file that has two header lines, then every line
  1172.   has 'n' data, not necessarily equally spaced. I want the 2nd and 5th
  1173.   data of each line. Shall I write a Fortran program...?
  1174.  
  1175.   Solution: nope. This is quicker:
  1176.  
  1177.        $ awk 'NL > 2 {print $2, "\t", $5}' datafile.dat > newfile.dat
  1178.  
  1179.   Explanation: the command awk is actually a programming language: for
  1180.   each line starting from the third in datafile.dat, print out the
  1181.   second and fifth field, separated by a tab. Learn some awk---it saves
  1182.   a lot of time.
  1183.  
  1184.   Problem: I've downloaded an FTP site's ls-lR.gz to check its contents.
  1185.   For each subdirectory, it contains a line that reads "total xxxx",
  1186.   where xxxx is size in kbytes of the dir contents. I'd like to get the
  1187.   grand total of all these xxxx values.
  1188.  
  1189.   Solution:
  1190.  
  1191.        zcat ls-lR.gz | awk ' $1 == "total" { i += $2 } END {print i}'
  1192.  
  1193.   Explanation: zcat outputs the contents of the .gz file and pipes to
  1194.   awk, whose man page you're kindly requested to read ;-)
  1195.  
  1196.   Problem: I've written a Fortran program, myprog, to calculate a
  1197.   parameter from a data file. I'd like to run it on hundreds of data
  1198.   files and have a list of the results, but it's a nuisance to ask each
  1199.   time for the file name. Under VMS I'd write a lengthy command file,
  1200.   and under Linux?
  1201.  
  1202.   Solution: a very short script. Make your program look for the data
  1203.   file 'mydata.dat' and print the result on the screen (stdout), then
  1204.   write the following script:
  1205.  
  1206.   ______________________________________________________________________
  1207.   #!/bin/sh
  1208.   # myprog.sh: run the same command on many different files
  1209.   # usage: myprog.sh *.dat
  1210.   for file in $*  # for all parameters (e.g. *.dat)
  1211.   do
  1212.     # append the file name to result.dat
  1213.     echo -n "${file}:    " >> results.dat
  1214.     # copy current argument to mydata.dat, run myprog
  1215.     # and append the output to results.dat
  1216.     cp ${file} mydata.dat ; myprog >> results.dat
  1217.   done
  1218.   ______________________________________________________________________
  1219.  
  1220.   Problem: I want to replace `geology' with `geophysics' in all my text
  1221.   files. Shall I edit them all manually?
  1222.  
  1223.   Solution: nope. Write this shell script:
  1224.  
  1225.   ______________________________________________________________________
  1226.   #!/bin/sh
  1227.   # replace $1 with $2 in $*
  1228.   # usage: replace "old-pattern" "new-pattern" file [file...]
  1229.   OLD=$1          # first parameter of the script
  1230.   NEW=$2          # second parameter
  1231.   shift ; shift   # discard first two parameters: the next are the file names
  1232.   for file in $*  # for all files given as parameters
  1233.   do
  1234.   # replace every occurrence of OLD with NEW, save on a temporary file
  1235.     sed "s/$OLD/$NEW/g" ${file} > ${file}.new
  1236.   # rename the temporary file as the original file
  1237.     /bin/mv ${file}.new ${file}
  1238.   done
  1239.   ______________________________________________________________________
  1240.  
  1241.   Problem: I have some data files, I don't know their length and have to
  1242.   remove their last but one and last but two lines. Er... manually?
  1243.  
  1244.   Solution: no, of course. Write this script:
  1245.  
  1246.   ______________________________________________________________________
  1247.   #!/bin/sh
  1248.   # prune.sh: removes n-1th and n-2th lines from files
  1249.   # usage: prune.sh file [file...]
  1250.   for file in $*   # for every parameter
  1251.   do
  1252.     LINES=`wc -l $file | awk '{print $1}'`  # number of lines in file
  1253.     LINES=`expr $LINES - 3`                 # LINES = LINES - 3
  1254.     head -n $LINES $file > $file.new        # output first LINES lines
  1255.     tail -n 1 $file >> $file.new            # append last line
  1256.   done
  1257.   ______________________________________________________________________
  1258.  
  1259.   I hope these examples whetted your appetite...
  1260.  
  1261.   12.  Tips You Can't Do Without
  1262.  
  1263.   ╖  Command completion: pressing <TAB> when issuing a command will
  1264.      complete the command line for you. Example: you have to type less
  1265.      this_is_a_long_name; typing in less thi<TAB> will suffice. (If you
  1266.      have other files that start with the same characters, supply enough
  1267.      characters to resolve any ambiguity.)
  1268.  
  1269.   ╖  Back-scrolling: pressing SHIFT--PAG UP (the grey key) allows you to
  1270.      backscroll a few pages, depending on your PC's video memory.
  1271.  
  1272.   ╖  Resetting the screen: if you happen to more or cat a binary file,
  1273.      your screen may end up full of garbage. To fix things, blind type
  1274.      reset or this sequence of characters: echo CTRL-V ESC c RETURN.
  1275.  
  1276.   ╖  Pasting text: in console, see below; in X, click and drag to select
  1277.      the text in an xterm window, then click the middle button (or the
  1278.      two buttons together if you have a two-button mouse) to paste.
  1279.   ╖  Using the mouse: ask your sysadm to install gpm, a mouse driver for
  1280.      the console. Click and drag to select text, then right click to
  1281.      paste the selected text. It works across different VCs.
  1282.  
  1283.   13.  The End
  1284.  
  1285.   13.1.  Copyright
  1286.  
  1287.   Unless otherwise stated, Linux HOWTO documents are copyrighted by
  1288.   their respective authors. Linux HOWTO documents may be reproduced and
  1289.   distributed in whole or in part, in any medium physical or electronic,
  1290.   as long as this copyright notice is retained on all copies. Commercial
  1291.   redistribution is allowed and encouraged; however, the author would
  1292.   like to be notified of any such distributions.
  1293.  
  1294.   All translations, derivative works, or aggregate works incorporating
  1295.   any Linux HOWTO documents must be covered under this copyright notice.
  1296.   That is, you may not produce a derivative work from a HOWTO and impose
  1297.   additional restrictions on its distribution. Exceptions to these rules
  1298.   may be granted under certain conditions; please contact the Linux
  1299.   HOWTO coordinator at the address given below.
  1300.  
  1301.   In short, we wish to promote dissemination of this information through
  1302.   as many channels as possible. However, we do wish to retain copyright
  1303.   on the HOWTO documents, and would like to be notified of any plans to
  1304.   redistribute the HOWTOs.
  1305.  
  1306.   If you have questions, please contact Greg Hankins, the Linux HOWTO
  1307.   coordinator, at gregh@sunsite.unc.edu via email.
  1308.  
  1309.   14.  Disclaimer
  1310.  
  1311.   This work was written following the experience we had at the Settore
  1312.   di Geofisica of Bologna University (Italy), where a VAX 4000 is being
  1313.   superseded and replaced by Linux-based Pentium PCs. Most of my
  1314.   colleagues are VMS users, and some of them have switched to Linux.
  1315.  
  1316.   ``From VMS to Linux HOWTO'' was written by Guido Gonzato,
  1317.   guido@ibogfs.cineca.it, 1997. Many thanks to my colleagues and friends
  1318.   who helped me define the needs and habits of the average VMS user,
  1319.   especially to Dr. Warner Marzocchi.
  1320.  
  1321.   Please help me improve this HOWTO. I'm not a VMS expert and never will
  1322.   be, so your suggestions and bug reports are more than welcome.
  1323.  
  1324.   Enjoy,
  1325.  
  1326.   Guido =8-)
  1327.  
  1328.